home *** CD-ROM | disk | FTP | other *** search
- |openfile|
- windowtitle `OpenFile "filename","Buffer Name",IOFlags,AccessFlags
- printlf `Opens a file for input/output purposes.
- printlf `Users can have as many files open as
- printlf `memory permits. The IOFlags are READONLY
- printlf `or WRITEONLY. AccessFlags are NEWFILE,
- printlf `OLDFILE or APPEND. See page 6-53 for more
- print `info. SEE ALSO: `
- subject `Close`Close`
- end
-
- |filewriteline|
- windowtitle `FileWriteLine "Buffer Name","String"
- printlf `Output the "String" to the file referenced
- printlf `by "Buffer Name". This outputs a linefeed
- printlf `at the end of the write.
- printlf
- print `SEE ALSO: `
- subject `FileReadLine`FileReadLine`
- print ` & `
- subject `FileWriteChars`FileWriteChars`
- end
-
- |filereadline|
- windowtitle `FileReadLine "Buffer Name",VariableName
- printlf `Reads a line from a previously opened file
- printlf `and places the string into the specified
- printlf `VariableName.
- printlf
- print `SEE ALSO: `
- subject `FileWriteLine`FileWriteLine`
- print ` & `
- subject `FileReadChars`FileReadChars`
- end
-
- |filereadchars|
- windowtitle `FileReadChars "Buffer Name",VariableName,<NumberOfChars>
- printlf `Reads in <NumberOfChars> characters from
- printlf `a file designated by "Buffer Name" and
- printlf `places these characters into the string
- printlf `variable VariableName.
- printlf
- print `SEE ALSO: `
- subject `FileReadLine`FileReadLine`
- print ` & `
- subject `FileWriteChars`FileWriteChars`
- end
-
- |filewritechars|
- windowtitle `FileWriteChars "Buffer Name","String"{,<length>}
- printlf `Output the characters contained in the
- printlf `"String" to the file associated with the
- printlf `"Buffer Name". It will not output a line
- print `feed as `
- subject `FileWriteLine`FileWriteLine`
- printlf ` does. A length may
- printlf `be specified.
- print `SEE ALSO: `
- subject `FileReadChars`FileReadChars`
- end
-
- |setfilebufsize|
- windowtitle 'SetFileBufferSize <sizeinkilos>
- printlf `Sets the file input/output buffer size in
- printlf `kilobytes. The default is 4 Kilobytes.
- printlf `It only applies to buffers opened after
- printlf `this command is used.
- printlf
- print `SEE ALSO: `
- subject `OpenFile`OpenFile`
- end
-
- |close|
- windowtitle `Close "Buffer Name"
- printlf `Closes the file associated with the
- printlf `specified buffer name. Any changes
- printlf `made to the buffer will be written
- printlf `to the buffer at this time.
- printlf
- print `SEE ALSO: `
- subject `OpenFile`OpenFile`
- end
-
-
-